home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / mesa / mesa-tk / samples.tk / stencil.c < prev    next >
C/C++ Source or Header  |  2000-02-23  |  3KB  |  150 lines

  1. /*
  2.  * Copyright (c) 1991, 1992, 1993 Silicon Graphics, Inc.
  3.  *
  4.  * Permission to use, copy, modify, distribute, and sell this software and
  5.  * its documentation for any purpose is hereby granted without fee, provided
  6.  * that (i) the above copyright notices and this permission notice appear in
  7.  * all copies of the software and related documentation, and (ii) the name of
  8.  * Silicon Graphics may not be used in any advertising or
  9.  * publicity relating to the software without the specific, prior written
  10.  * permission of Silicon Graphics.
  11.  *
  12.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF
  13.  * ANY KIND,
  14.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  15.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  16.  *
  17.  * IN NO EVENT SHALL SILICON GRAPHICS BE LIABLE FOR
  18.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  19.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  21.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  22.  * OF THIS SOFTWARE.
  23.  */
  24.  
  25. #include <stdio.h>
  26. #include <string.h>
  27. #include <math.h>
  28. #include <GL/gltk.h>
  29.  
  30. GLenum directRender;
  31.  
  32. static void Init(void)
  33. {
  34.   glShadeModel(GL_FLAT);
  35.   glClearColor(0.0, 0.0, 0.0, 0.0);
  36.  
  37.   glClearStencil(0);
  38.   glStencilMask(1);
  39.   glEnable(GL_STENCIL_TEST);
  40. }
  41.  
  42. static void Reshape(int width, int height)
  43. {
  44.  
  45.   glViewport(0, 0, (GLint) width, (GLint) height);
  46.  
  47.   glMatrixMode(GL_PROJECTION);
  48.   glLoadIdentity();
  49.   glOrtho(-5.0, 5.0, -5.0, 5.0, -5.0, 5.0);
  50.   glMatrixMode(GL_MODELVIEW);
  51. }
  52.  
  53. static GLenum Key(int key, GLenum mask)
  54. {
  55.  
  56.   switch (key) {
  57.     case TK_ESCAPE:
  58.       tkQuit();
  59.   }
  60.   return GL_FALSE;
  61. }
  62.  
  63. static void Draw(void)
  64. {
  65.  
  66.   glClear(GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
  67.  
  68.   glStencilFunc(GL_ALWAYS, 1, 1);
  69.   glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
  70.  
  71.   glColor3ub(200, 0, 0);
  72.   glBegin(GL_POLYGON);
  73.   glVertex3i(-4, -4, 0);
  74.   glVertex3i(4, -4, 0);
  75.   glVertex3i(0, 4, 0);
  76.   glEnd();
  77.  
  78.   glStencilFunc(GL_EQUAL, 1, 1);
  79.   glStencilOp(GL_INCR, GL_KEEP, GL_DECR);
  80.  
  81.   glColor3ub(0, 200, 0);
  82.   glBegin(GL_POLYGON);
  83.   glVertex3i(3, 3, 0);
  84.   glVertex3i(-3, 3, 0);
  85.   glVertex3i(-3, -3, 0);
  86.   glVertex3i(3, -3, 0);
  87.   glEnd();
  88.  
  89.   glStencilFunc(GL_EQUAL, 1, 1);
  90.   glStencilOp(GL_KEEP, GL_KEEP, GL_KEEP);
  91.  
  92.   glColor3ub(0, 0, 200);
  93.   glBegin(GL_POLYGON);
  94.   glVertex3i(3, 3, 0);
  95.   glVertex3i(-3, 3, 0);
  96.   glVertex3i(-3, -3, 0);
  97.   glVertex3i(3, -3, 0);
  98.   glEnd();
  99.  
  100.   glFlush();
  101. }
  102.  
  103. static GLenum Args(int argc, char **argv)
  104. {
  105.   GLint i;
  106.  
  107.   directRender = GL_TRUE;
  108.  
  109.   for (i = 1; i < argc; i++) {
  110.     if (strcmp(argv[i], "-dr") == 0) {
  111.       directRender = GL_TRUE;
  112.     }
  113.     else if (strcmp(argv[i], "-ir") == 0) {
  114.       directRender = GL_FALSE;
  115.     }
  116.     else {
  117.       printf("%s (Bad option).\n", argv[i]);
  118.       return GL_FALSE;
  119.     }
  120.   }
  121.   return GL_TRUE;
  122. }
  123.  
  124. void main(int argc, char **argv)
  125. {
  126.   GLenum type;
  127.  
  128.   if (Args(argc, argv) == GL_FALSE) {
  129.     tkQuit();
  130.   }
  131.  
  132.   tkInitPosition(0, 0, 300, 300);
  133.  
  134.   type = TK_RGB | TK_SINGLE | TK_STENCIL;
  135.   type |= (directRender) ? TK_DIRECT : TK_INDIRECT;
  136.   tkInitDisplayMode(type);
  137.  
  138.   if (tkInitWindow("Stencil Test") == GL_FALSE) {
  139.     tkQuit();
  140.   }
  141.  
  142.   Init();
  143.  
  144.   tkExposeFunc(Reshape);
  145.   tkReshapeFunc(Reshape);
  146.   tkKeyDownFunc(Key);
  147.   tkDisplayFunc(Draw);
  148.   tkExec();
  149. }
  150.